home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / DTS QT Utilities.Aug-95 / Projects & Test Apps / Drag&Drop Shell / Tool Framework / ToolFramework.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-10  |  848 b   |  33 lines  |  [TEXT/MPCC]

  1. /*
  2.     File:        ToolFramework.h
  3.  
  4.     Contains:    Simple AE framework for QuickTime related tools.
  5.  
  6.     Written by:    DTS
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.        <1>         1/30/95    khs        first file
  13.        
  14. */
  15.  
  16. #pragma once
  17.  
  18. // FUNCTION PROTOTYPES
  19. pascal void             InitMacEnvironment(long nMasters);
  20. pascal Boolean         InitializeAppleEvents();
  21. pascal void             MainEventLoop(void);
  22.  
  23. pascal OSErr         AEOpenHandler(AppleEvent *theMessage, AppleEvent *theReply, long refCon);
  24. pascal OSErr         AEOpenDocHandler(AppleEvent *theMessage, AppleEvent *theReply, long refCon);
  25. pascal OSErr         AEPrintHandler(AppleEvent *theMessage, AppleEvent *theReply, long refCon);
  26. pascal OSErr         AEQuitHandler(AppleEvent *theMessage, AppleEvent *theReply, long refCon);
  27.  
  28. pascal OSErr         CheckForRequiredAEParams(AppleEvent *theEvent);
  29.  
  30.  
  31.  
  32.  
  33.